1
bash
This enhances the Bash shell experience by customizing the cd
command to list directory contents and creating aliases for common commands with interactive or human-readable options.
function cd { builtin cd "$@" && ls } alias cp='cp --interactive' alias mv='mv --interactive' alias rm='rm --interactive' alias df='df -h' alias du='du -h'
bash internalshell configuration and customizationaliases and functions